home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 with MFC / Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso / CODE / Chap08 / Paint4 / AboutDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-05  |  462 b   |  22 lines

  1. //***********************************************************************
  2. //
  3. //  AboutDlg.h
  4. //
  5. //***********************************************************************
  6.  
  7. class CAboutDialog : public CDialog
  8. {
  9. private:
  10.     CRect m_rect;
  11.  
  12. public:
  13.     CAboutDialog (CWnd* pParentWnd = NULL) :
  14.         CDialog (IDD_ABOUTDLG, pParentWnd) {}
  15.  
  16.     virtual BOOL OnInitDialog ();
  17.  
  18. protected:
  19.     afx_msg void OnPaint ();
  20.     DECLARE_MESSAGE_MAP ()
  21. };
  22.